Skip to content

[github] Fix invalid local action invocation in release-doxygen workflow - #197107

Merged
kwk merged 1 commit into
llvm:mainfrom
kwk:fix-release-doxygen-workflow
May 12, 2026
Merged

[github] Fix invalid local action invocation in release-doxygen workflow#197107
kwk merged 1 commit into
llvm:mainfrom
kwk:fix-release-doxygen-workflow

Conversation

@kwk

@kwk kwk commented May 12, 2026

Copy link
Copy Markdown
Contributor

Fix the Validate Input step in .github/workflows/release-doxygen.yml to use a valid local action invocation.

Before:

- name: Validate Input
  ./.github/workflows/validate-release-version
  with:
    release-version: ${{ inputs.release-version }}

After:

- name: Validate Input
  uses: ./.github/workflows/validate-release-version
  with:
    release-version: ${{ inputs.release-version }}

GitHub Actions steps must use uses: or run:. The current form is invalid.

This appears to have been introduced in #196769.

  • Verified the workflow syntax change is minimal and correct.
  • No functional behavior intended beyond fixing the invalid step declaration.

Fix the `Validate Input` step in `.github/workflows/release-doxygen.yml` to use a valid local action invocation.

Before:
```yaml
- name: Validate Input
  ./.github/workflows/validate-release-version
  with:
    release-version: ${{ inputs.release-version }}
```

After:
```yaml
- name: Validate Input
  uses: ./.github/workflows/validate-release-version
  with:
    release-version: ${{ inputs.release-version }}
```

GitHub Actions steps must use `uses:` or `run:`. The current form is invalid.

This appears to have been introduced in llvm#196769.

- Verified the workflow syntax change is minimal and correct.
- No functional behavior intended beyond fixing the invalid step declaration.
@llvmorg-github-actions

Copy link
Copy Markdown

@llvm/pr-subscribers-github-workflow

Author: Konrad Kleine (kwk)

Changes

Fix the Validate Input step in .github/workflows/release-doxygen.yml to use a valid local action invocation.

Before:

- name: Validate Input
  ./.github/workflows/validate-release-version
  with:
    release-version: ${{ inputs.release-version }}

After:

- name: Validate Input
  uses: ./.github/workflows/validate-release-version
  with:
    release-version: ${{ inputs.release-version }}

GitHub Actions steps must use uses: or run:. The current form is invalid.

This appears to have been introduced in #196769.

  • Verified the workflow syntax change is minimal and correct.
  • No functional behavior intended beyond fixing the invalid step declaration.

Full diff: https://github.com/llvm/llvm-project/pull/197107.diff

1 Files Affected:

  • (modified) .github/workflows/release-doxygen.yml (+1-1)
diff --git a/.github/workflows/release-doxygen.yml b/.github/workflows/release-doxygen.yml
index 7bf5e5e94f905..69efa72f323a4 100644
--- a/.github/workflows/release-doxygen.yml
+++ b/.github/workflows/release-doxygen.yml
@@ -60,7 +60,7 @@ jobs:
           LLVM_TOKEN_GENERATOR_PRIVATE_KEY: ${{ secrets.LLVM_TOKEN_GENERATOR_PRIVATE_KEY }}
 
       - name: Validate Input
-        ./.github/workflows/validate-release-version
+        uses: ./.github/workflows/validate-release-version
         with:
           release-version: ${{ inputs.release-version }}
 

@c-rhodes c-rhodes left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM thanks for fixing

@kwk
kwk merged commit 05f1fd3 into llvm:main May 12, 2026
16 checks passed
@kwk
kwk deleted the fix-release-doxygen-workflow branch May 12, 2026 06:47
lialan pushed a commit to lialan/llvm-project that referenced this pull request May 13, 2026
…low (llvm#197107)

Fix the `Validate Input` step in `.github/workflows/release-doxygen.yml`
to use a valid local action invocation.

Before:
```yaml
- name: Validate Input
  ./.github/workflows/validate-release-version
  with:
    release-version: ${{ inputs.release-version }}
```

After:
```yaml
- name: Validate Input
  uses: ./.github/workflows/validate-release-version
  with:
    release-version: ${{ inputs.release-version }}
```

GitHub Actions steps must use `uses:` or `run:`. The current form is
invalid.

This appears to have been introduced in llvm#196769.

- Verified the workflow syntax change is minimal and correct.
- No functional behavior intended beyond fixing the invalid step
declaration.
EuphoricThinking pushed a commit to EuphoricThinking/llvm-project that referenced this pull request May 14, 2026
…low (llvm#197107)

Fix the `Validate Input` step in `.github/workflows/release-doxygen.yml`
to use a valid local action invocation.

Before:
```yaml
- name: Validate Input
  ./.github/workflows/validate-release-version
  with:
    release-version: ${{ inputs.release-version }}
```

After:
```yaml
- name: Validate Input
  uses: ./.github/workflows/validate-release-version
  with:
    release-version: ${{ inputs.release-version }}
```

GitHub Actions steps must use `uses:` or `run:`. The current form is
invalid.

This appears to have been introduced in llvm#196769.

- Verified the workflow syntax change is minimal and correct.
- No functional behavior intended beyond fixing the invalid step
declaration.
pedroMVicente pushed a commit to pedroMVicente/llvm-project that referenced this pull request May 19, 2026
…low (llvm#197107)

Fix the `Validate Input` step in `.github/workflows/release-doxygen.yml`
to use a valid local action invocation.

Before:
```yaml
- name: Validate Input
  ./.github/workflows/validate-release-version
  with:
    release-version: ${{ inputs.release-version }}
```

After:
```yaml
- name: Validate Input
  uses: ./.github/workflows/validate-release-version
  with:
    release-version: ${{ inputs.release-version }}
```

GitHub Actions steps must use `uses:` or `run:`. The current form is
invalid.

This appears to have been introduced in llvm#196769.

- Verified the workflow syntax change is minimal and correct.
- No functional behavior intended beyond fixing the invalid step
declaration.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants